home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / network / shellw.zip / SHELLWIN.DOC next >
Text File  |  1991-02-22  |  3KB  |  92 lines

  1. SHELLWIN...:  Check Netware Shell for Windows Compatibility.
  2. Author.....:  Scott Hansen
  3. Version....:  1.01
  4. Date.......:  02/21/91
  5.  
  6.  
  7. Purpose:
  8.  
  9. To run Windows 3.xx in a Novell Netware environment it requires a shell
  10. (ie: NET3.COM) at version 3.01 (or greater), preferably Rev E.  This 
  11. is a very quick check to make sure a workstation has the correct shell
  12. before starting Windows from your network.  This provides a graceful
  13. way of informing the user of the problem.
  14.  
  15. The idea and purpose of SHELLWIN is very straight foward.  It simply
  16. checks the MajorVersion of the Netware shell to see if it is greater
  17. than 2.  If this test fails or the version can not be determined a
  18. DOS ERRORLEVEL of 1 is set and the program terminates.  If it passes,
  19. the program terminates with an ERRORLEVEL of 0.
  20.  
  21. If Windows is installed with Netware Support it will tell the user the
  22. Shell/drivers are incompatible and terminate.  Although, it possible to
  23. install and run Windows with the V2.xx series of shells/drivers, the
  24. environment will be very unstable and yield unpredictable results.  With
  25. this utility a batch file could easily be written to check the version
  26. of the shell and update it if necessary.
  27.  
  28.  
  29. Usage:
  30.  
  31. SHELLWIN [?] | [/H]
  32.  
  33. The command line switches display a help/syntax message.  Otherwise,
  34. there is no output to the screen.
  35.  
  36. A sample batch file.
  37.  
  38. @echo off
  39. shellwin
  40. if errorlevel 1 goto wrong_shell
  41. cls
  42. echo Loading Windows.
  43. ...
  44. Your method of starting Windows here.
  45. ...
  46. goto end
  47. :wrong_shell
  48. echo Error:  Wrong Netware Shell for Windows 3.xx
  49. :end
  50.  
  51.  
  52. Disclaimer:
  53.  
  54. This product is supplied without any warranty of any kind with regards
  55. to this material including, but not limited to, the implied warranties
  56. of merchantability and fitness for a particular purpose.  The Author
  57. shall not be liable for errors contained herein or for incidental or
  58. consequential damages in connection with furnishing, performance, or
  59. use of this product.
  60.  
  61. License:
  62.  
  63. You are free to use SHELLWIN for your own personal use.  You may copy
  64. and distribute SHELLWIN and the accompanying documentation provided
  65. no fee is charged for other than the copying of the media.  This includes
  66. posting SHELLWIN on Bulletin board systems and information services.
  67.   
  68. You may NOT distribute SHELLWIN without the documentation and copyright
  69. notice.  You may NOT use SHELLWIN in a commercial application or site
  70. without paying the license fee.  You may NOT use SHELLWIN in a government
  71. application without paying the license fee.
  72.  
  73. You may obtain a license to use SHELLWIN on a single file server
  74. by mailing a check or money order for $10.00 (US) to:
  75.  
  76.                 Scott Hansen
  77.                 15553 207th PL SE                
  78.                 Renton, WA 98059
  79.  
  80. You will also recieve a list of other Netare utilities I have available
  81. like UGRAPH and CMON.  Your name will also be placed on my mailing list.
  82.  
  83. I welcome your suggestions, questions and your bugs/abnormality reports,
  84. give me a call at:
  85.  
  86.                 The Crystal Chip BBS
  87.                 Specializing in Netware and Windows
  88.                 (206) 226-6550, 8,1,N 1200/2400
  89.                 Renton, WA
  90.  
  91. Leave all comments to the Sysop, thats me.
  92.